##############################################################################
Virtual Environment has python scripts so venv cannot be uploaded properly 
it gets damaged while compressing, splitting. it also takes more time to copy or 
cut and paste so virtual environment is not included with the project.
##############################################################################
SU-niranjantamhane password- pr123 or pr1234
Requirements:
1) Python 3.8
2) Python Components
	A. Django 
	B. pillow
	C. requests
	D. pandas
	E. sklearn
3) MySQL Database Server

Steps to install:
1) Install Python 3.8(select add path to system)
2)Create virtual environment to avoid damage to the installed system python in the the same directory using command:
for linux: python3 -m venv venv
for windows: python -m venv venv
3) start the virtual environment by:
for linux: source bin/activate
for windows: ./venv/Scripts/activate
1) install above python components using pip for windows and pip3 for linux
2) install MySQL server using online guide for both linux and windows 
3) start the MySQL database server and login as root user and create a database with name "mydatabase"
4) after creating database start the server and start the global server
5)Delete all migrations and run "python manage.py migrate" and "python manage.py makemigrations" for both servers
6) above comands will create the required tables in the MySQL database for global server
7) Now Servers are ready use "python manage.py runserver"


